*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html::-moz-selection {
  background-color: #295a40;
  color: #fff;
}
html::selection {
  background-color: #295a40;
  color: #fff;
}

body {
  font-family: "Karla", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding-left: 0;
}

input::-webkit-input-placeholder {
  font: inherit;
}

input::-moz-placeholder {
  font: inherit;
}

input:-ms-input-placeholder {
  font: inherit;
}

input::-ms-input-placeholder {
  font: inherit;
}

input, button, select, textarea, input::placeholder {
  font: inherit;
}

iframe {
  max-width: 100% !important;
}

.form {
  color: #295a40;
}
.form__logo {
  text-align: center;
  padding-block: 3rem;
}
.form__logo img {
  width: 20rem;
}
.form__container {
  max-width: 80rem;
  padding-inline: 3rem;
  margin-inline: auto;
}
.form__wrapper {
  background-color: #f9fcfd;
  border: 1px solid rgba(41, 90, 64, 0.4);
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form__title {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 3rem;
  border-bottom: 1px solid rgba(41, 90, 64, 0.3);
}
.form__details {
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.form__text {
  font-size: 1.8rem;
  line-height: 1.6;
}
.form__form {
  padding: 3rem;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.form__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
.form__input {
  padding: 1.6rem;
  border-radius: 50px;
  border: 1px solid #295a40;
  outline: 1px solid #295a40;
  font-size: 1.6rem;
  color: #295a40;
  font-weight: 700;
}
.form__submit {
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #295a40;
  color: #fff;
  padding: 1.6rem;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
}
.form__submit:hover {
  background-color: rgb(33.0190839695, 72.4809160305, 51.5419847328);
}
.form__submit:active {
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}